找传奇、传世资源到传世资源站!

C#数字键盘

8.5玩家评分(1人评分)
下载后可评
介绍 评论 失效链接反馈

C#数字键盘

功能展示

在这里插入图片描述
在这里插入图片描述
在这里插入图片描述

调用使用方法

//实例化数字键盘
DigitalKeyboardForm keyboardForm = new DigitalKeyboardForm();
//设置允许输入最小值
keyboardForm.ExMinValue = 10;
//设置允许输入最大值
keyboardForm.ExMaxValue = 500;
//设置默认值
keyboardForm.ExNowValue = int.Parse(this.lbNowValue.Text);
//显示键盘界面
keyboardForm.ShowDialog();
//确定使用键盘结果
if (keyboardForm.ExResault)
{
    //将界面显示到界面
    this.lbNowValue.Text = keyboardForm.ExNowValue.ToString();
}
.
├── App
│   ├── App
│   │   ├── App.csproj
│   │   ├── DigitalKeyboardForm.cs
│   │   ├── DigitalKeyboardForm.designer.cs
│   │   ├── DigitalKeyboardForm.resx
│   │   ├── Program.cs
│   │   ├── Properties
│   │   │   ├── AssemblyInfo.cs
│   │   │   ├── Resources.Designer.cs
│   │   │   ├── Resources.resx
│   │   │   ├── Settings.Designer.cs
│   │   │   └── Settings.settings
│   │   ├── TestForm.Designer.cs
│   │   ├── TestForm.cs
│   │   ├── TestForm.resx
│   │   ├── bin
│   │   │   ├── Debug
│   │   │   │   ├── App.exe
│   │   │   │   └── App_20190727_201941.pdb
│   │   │   └── Release
│   │   └── obj
│   │       └── Debug
│   │           ├── App.DigitalKeyboardForm.resources
│   │           ├── App.Properties.Resources.resources
│   │           ├── App.TestForm.resources
│   │           ├── App.csproj.CoreCompileInputs.cache
│   │           ├── App.csproj.FileListAbsolute.txt
│   │           ├── App.csproj.GenerateResource.cache
│   │           ├── App.csprojAssemblyReference.cache
│   │           ├── App.exe
│   │           ├── App.pdb
│   │           ├── DesignTimeResolveAssemblyReferences.cache
│   │           ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │           └── TempPE
│   ├── App.sln
│   └── 键盘界面.png
└── 找例子网_App.zip

9 directories, 29 files

评论

发表评论必须先登陆, 您可以 登陆 或者 注册新账号 !


在线咨询: 问题反馈
客服QQ:174666394

有问题请留言,看到后及时答复